99b5fa1f4765ce00642e0e4ba0a7c8a6761aa472,idea/src/org/jetbrains/jet/plugin/quickfix/AddFunctionToSupertypeFix.java,AddFunctionToSupertypeFix,generateFunctionsToAdd,#JetNamedFunction#,54

Before Change


    }

    private static List<FunctionDescriptor> generateFunctionsToAdd(JetNamedFunction functionElement) {
        BindingContext context = KotlinCacheManagerUtil.getDeclarationsFromProject(functionElement).getBindingContext();

        FunctionDescriptor functionDescriptor = context.get(BindingContext.FUNCTION, functionElement);
        if (functionDescriptor == null) return Collections.emptyList();

After Change


    }

    private static List<FunctionDescriptor> generateFunctionsToAdd(JetNamedFunction functionElement) {
        BindingContext context = KotlinCacheManagerUtil.getDeclarationsBindingContext(functionElement);

        FunctionDescriptor functionDescriptor = context.get(BindingContext.FUNCTION, functionElement);
        if (functionDescriptor == null) return Collections.emptyList();